From 29f999ff69fea4aa73d3a85c399d78159db876d7 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Sat, 31 Mar 2007 12:26:04 +0100 Subject: [PATCH] xm: Fix an indentation bug. Signed-off-by: Stefan Berger --- tools/python/xen/xm/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/python/xen/xm/main.py b/tools/python/xen/xm/main.py index 34a3a5d516..940a97034e 100644 --- a/tools/python/xen/xm/main.py +++ b/tools/python/xen/xm/main.py @@ -929,10 +929,10 @@ def xm_label_list(doms): if security.active_policy not in ['INACTIVE', 'NULL', 'DEFAULT']: if not d['seclabel']: d['seclabel'] = 'ERROR' - elif security.active_policy in ['DEFAULT']: - d['seclabel'] = 'DEFAULT' - else: - d['seclabel'] = 'INACTIVE' + elif security.active_policy in ['DEFAULT']: + d['seclabel'] = 'DEFAULT' + else: + d['seclabel'] = 'INACTIVE' output.append((format % d, d['seclabel'])) -- 2.30.2